06. K-means quizzes

K-means Quizzes

k-means quiz 1

Regarding the image above, which of the following is true?

SOLUTION:
  • k = 3, but the number of original clusters is much higher.
  • With k = 3, such as in the image above, k-means will always divide the data up into exactly 3 clusters.

k-means quiz 2

Under which of the following conditions might the k-means algorithm fail?

SOLUTION:
  • Clusters are highly overlapping
  • Clusters are complex shapes
  • Cluster assignment is highly sensitive to random cluster center initialization.

k-means quiz 3

If you have no idea how many clusters to expect in your data, what should you do?

SOLUTION: Try a different clustering algorithm other than k-means.